home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: delta / whiteline CD Series - delta.iso / progtool / gnu / aa_gnu.crs next >
Text File  |  1995-11-25  |  5KB  |  144 lines

  1. PatchLevel: 9
  2. -rw-rw-r--  1 gray       212140 Sep 25 15:15 curses.zoo
  3.  
  4. This is Eric Smith's curses/termcap library for gcc TOS. Thanks Eric!
  5.  
  6.     - see the file src/ChangeLog first.
  7.     - documentation is in doc/
  8.        printer ready docs are in doc/Curses.doc
  9.     - widget/    is a port of Richard Culshaw's widget library. See the
  10.             file widget/README first.
  11.  
  12. your comments/suggestions are always welcome:
  13. --
  14. Eric Smith
  15. 7103_300%uwovax.uwo.ca@CORNELLC.CIT.CORNELL.EDU
  16. (please put "Attn: Eric Smith in subject line)
  17.  
  18. bang:   {any internet host}!dsrgsun.ces.CWRU.edu!bammi    jwahar r. bammi
  19. domain: bammi@dsrgsun.ces.CWRU.edu
  20. GEnie:    J.Bammi
  21.  
  22.  
  23. ********
  24. ./test/puzzle15/README
  25. ********
  26. I have applied some of the suggestions put to me by various persons
  27. (acknowledged in the program text). The program can be compiled with
  28. the option -DARROWKEYS, but I am not sure that it works - I cannot
  29. test it. The other compile-time options have been tested and they work.
  30.  
  31. In the following shell archive you will find the source of the program
  32. and a manual page in [nt]roff -man format.
  33.  
  34. Since the previous version I have moved to another machine. My email
  35. address is now knop@duteca.UUCP. Mail to the previous machine may not
  36. bounce, in which case it might appear in my mailbox on the new machine.
  37.  
  38.  
  39.  
  40. ********
  41. ./test/bandit/README
  42. ********
  43.      One-Armed Bandit, v 1.01, by Pete Granger   (December 13, 1988)
  44.   
  45.    Abstract:
  46.   
  47.      This is a slot machine simulation which uses curses routines. The
  48.     setup and payoffs are described in comments below, and the means of
  49.     play can be read in the print_instructions() routine.
  50.   
  51.    Notes:
  52.   
  53.     This program has been compiled and run on a VAX running Ultrix 3.0,
  54.     and on a Sun-3, Sun-4, and Sun-386i. It will compile on an IBM
  55.     AT-compatible, but there are problems with the stty and curses
  56.     commands. Fixes for the AT are forthcoming at an undetermined date.
  57.   
  58.     If your machine does not have the random() and srandom() functions,
  59.     then set the value of RANDOM to 0, prior to compiling, and rand() and
  60.     srand() will be used instead.
  61.   
  62.    This is the configuration and payoff chart for a fair but profitable
  63.    slot machine. It has a 9.54% chance of paying off on each play, and
  64.    (on one-dollar bets) will pay back an average of 91.47% of all bets.
  65.  
  66.          Wheel 1     Wheel 2     Wheel 3
  67.           -----       -----       -----
  68.     Bars    1           1           1
  69.    Bells    2           1           1
  70.  Oranges    1           5           1
  71.   Lemons    3           1           4
  72.    Plums    3           2           3
  73. Cherries    4           4           4
  74.  
  75.  
  76.    Combination     Pays   Frequency   Total Payoff
  77.       -----        ----     -----         -----
  78.       Bar * 3      1000        1          1000
  79.      Bell * 3       100        2           200
  80.    Orange * 3        50        5           250
  81.     Lemon * 3        20       12           240
  82.      Plum * 3        10       18           180
  83.    Cherry * 3         5       64           320
  84. Cherry * 2 + Any      2      160           320
  85.                             _____         _____
  86.                               262         2510
  87.                                           (234 profit)
  88.  
  89.    Pete Granger   ...!{ulowell,decvax,ima,ism780c}!cg-atla!granger
  90.  
  91.  
  92. ********
  93. ./widget/README
  94. ********
  95. /*****************************************************************************
  96. /*  FILE:        README
  97. /*  DATE:        August 1988.
  98. /*  AUTHOR:        Richard A. Culshaw.
  99. /* DISCLAIMER:        This file is deemed to be public-domain, on the simple
  100. /*            provisos that this section remains in this file and
  101. /*            that code using it do not do so for monetary gain.
  102. /*            Neither the author, nor the authors employees at the
  103. /*            time of developing this code, accept any liability or
  104. /*            responsibility for the use, abuse or misuse of this
  105. /*            code.
  106. /*****************************************************************************/
  107.  
  108.     Widgetlib is a standard C library which allows the user to define
  109. and interact with widgets (window gadget). The files provided are:
  110.  
  111. -rw-r--r--   1 pjs      net         1960 Oct 14 13:25 README
  112. -rw-r--r--   1 pjs      net         1144 Oct 14 13:23 makefile
  113. -rw-r--r--   1 pjs      net         2752 Oct 14 13:15 widget.h
  114. -rw-r--r--   1 pjs      net        10946 Oct 14 12:18 widget.ms
  115. -rw-r--r--   1 pjs      net        34817 Oct 14 13:15 widgetlib.c
  116. -rw-r--r--   1 pjs      net         3218 Oct 14 13:14 wpage.c
  117.  
  118. 1) widgetlib.c       (the actual code)
  119. 2) widget.h         (the header file which is needed in programs intending
  120.               to incorporate the library)
  121. 3) widget.ms         (an explanation of the library and how to use it)
  122. 4) wpage.c         (a little example of the library in use)
  123. 5) makefile          (compiles everything together)
  124.  
  125. Compiling things
  126. ================
  127.  
  128. Type 'make' within the directory which contains the files.
  129. This creates a local library within the directory, and creates the 
  130. executable 'wpage' (a demo for you to play with).
  131.  
  132. For general use 'widget.h' must be placed in the standard include directory
  133. and the library 'widgetlib.a' must go in a globally accessable place such
  134. as /usr/lib.
  135.  
  136. Printing doc
  137. ============
  138.  
  139. 'widget.ms' was created using the ms macros and can printed using something like
  140. 'nroff -ms widget.ms'
  141.  
  142.  
  143. Have fun. Richard C.
  144.